home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #1 / Amiga Plus CD - 2000 - No. 1.iso / Tools / Dev / Sas-PPC / samplelib1 / test.c < prev    next >
Encoding:
C/C++ Source or Header  |  1999-12-03  |  246 b   |  15 lines

  1. #include "ppcdispatch.h"
  2.  
  3. extern void *_PPC_test1, *_PPC_test2;
  4. int b = 0;
  5.  
  6. __asm __saveds test1(void)
  7. {
  8.         return(CallPPCFunction(_PPC_test1));
  9. }
  10.  
  11. __asm __saveds test2(register __d1 int a)
  12. {
  13.         return CallPPCFunction(_PPC_test2, a);
  14. }
  15.